home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / mintprgs / mintupgr / disk7.zoo / elvis.zoo / usr / doc / elvis / options.doc < prev    next >
Text File  |  1992-08-12  |  28KB  |  793 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. _5.  _O_P_T_I_O_N_S
  8.  
  9.      Options may be set or examined via  the  colon  command
  10. "set".   The  values of options will affect the operation of
  11. later commands.
  12.  
  13.      For convenience, options have both a  long  descriptive
  14. name  and  a  short name which is easy to type.  You may use
  15. either name interchangably.  I like the short names, myself.
  16.  
  17.      There are three types of options: Boolean, string,  and
  18. numeric.   Boolean  options are made TRUE by giving the name
  19. of the option as an argument to the "set" command; they  are
  20. made  FALSE  by  prefixing the name with "no".  For example,
  21. "set autoindent" makes the autoindent option TRUE, and  "set
  22. noautoindent"  makes  it  FALSE.   Elvis also allows boolean
  23. options to be toggled by prefixing the name with "neg".  So,
  24. ":map  g  :set  neglist^M"  will cause the <g> key to alter-
  25. nately toggle the "list" option on and off.  (The "neg" pre-
  26. fix is an extension; the real vi doesn't support it.)
  27.  
  28.      To change the value of a string or numeric option, pass
  29. the "set" command the name of the option, followed by an "="
  30. sign  and  the  option's  new  value.   For  example,   "set
  31. tabstop=8"  will  give the tabstop option a value of 8.  For
  32. string options, you may enclose the new value in quotes.
  33.  
  34. NAMES              TYPE DEFAULT       MEANING
  35. autoindent, ai     Bool noai          auto-indent during input
  36. autoprint, ap      Bool ap            in EX, print the current line
  37. autotab, at        Bool at            auto-indent allowed to use tabs?
  38. autowrite, aw      Bool noaw          auto-write when switching files
  39. beautify,  bf      Bool nobf          strip control chars from file?
  40. charattr, ca       Bool noca          interpret \fX sequences?
  41. cc, cc             Str  cc="cc -c"    name of the C compiler
  42. columns, co        Num  co=80         width of the screen
  43. digraph, dig       Bool nodig         recognize digraphs?
  44. directory, dir     Str  dir="/usr/tmp"where tmp files are kept
  45. edcompatible, ed   Bool noed          remember ":s//" options
  46. equalprg, ep       Bool ep="fmt"      program to run for = operator
  47. errorbells, eb     Bool eb            ring bell on error
  48. exrc, exrc         Bool noexrc        read "./.exrc" file?
  49. exrefresh, er      Bool er            write lines indiviually in EX
  50. flash, vbell       Bool flash         use visible alternative to bell
  51. flipcase, fc       Str  fc=""         non-ASCII chars flipped by ~
  52. hideformat, hf     Bool hf            hide text formatter commands
  53. ignorecase, ic     Bool noic          upper/lowercase match in search
  54. inputmode, im      Bool noim          start vi in insert mode?
  55. keytime, kt        Num  kt=2          timeout for mapped key entry
  56. keywordprg, kp     Str  kp="ref"      full pathname of shift-K prog
  57. lines, ln          Num  ln=25         number of lines on the screen
  58. list, li           Bool noli          display lines in "list" mode
  59. magic, ma          Bool ma            use regular expression in search
  60. make, mk           Str  mk="make"     name of the "make" program
  61.  
  62.  
  63.  
  64.                       August 10, 1992
  65.  
  66.  
  67.  
  68.  
  69.  
  70. 5-2                       OPTIONS                        5-2
  71.  
  72.  
  73. mesg, ms           Bool ms            allow messages from other users?
  74. modelines, ml      Bool noml          are modelines processed?
  75. more, more         Bool more          pause between messages?
  76. novice, nov        Bool nonovice      set options for ease of use
  77. paragraphs, para   Str  para="PPppIPLPQP"names of "paragraph" nroff cmd
  78. prompt, pr         Bool pr            show ':' prompt in _e_x mode
  79. readonly, ro       Bool noro          prevent overwriting of orig file
  80. remap, rem         Bool remap         allow key maps to call key maps
  81. report, re         Num  re=5          report when 5 or more changes
  82. ruler, ru          Bool noru          display line/column numbers
  83. scroll, sc         Num  sc=12         scroll amount for ^U and ^D
  84. sections, sect     Str  sect="NHSHSSSEse"names of "section" nroff cmd
  85. shell, sh          Str  sh="/bin/sh"  full pathname of the shell
  86. showmatch, sm      Bool nosm          show matching ()[]{}
  87. showmode, smd      Bool nosmd         say when we're in input mode
  88. shiftwidth, sw     Num  sw=8          shift amount for < and >
  89. sidescroll, ss     Num  ss=8          amount of sideways scrolling
  90. sync, sy           Bool nosy          call sync() often
  91. tabstop, ts        Num  ts=8          width of tab characters
  92. taglength, tl      Num  tl=0          significant chars in tag name
  93. term, te           Str  te="$TERM"    name of the termcap entry
  94. terse, tr          Bool notr          give shorter error messages
  95. timeout, to        Bool to            distinguish <esc> from <arrow>?
  96. warn, wa           Bool wa            warn for ! if file modified
  97. window, wi         Num  wi=24         lines to redraw after long move
  98. wrapmargin, wm     Num  wm=0          wrap long lines in input mode
  99. wrapscan, ws       Bool ws            at EOF, searches wrap to line 1
  100. writeany, wr       Bool nowr          allow :w to clobber files
  101.  
  102.  
  103. autoindent, ai
  104.      During input mode, the  autoindent  option  will  cause
  105.      each  added line to begin with the same amount of lead-
  106.      ing whitespace as the line above it.   Without  autoin-
  107.      dent, added lines are initially empty.
  108.  
  109. autoprint, ap
  110.      This option only affects EX  mode.   If  the  autoprint
  111.      option  on,  and  either the cursor has moved to a dif-
  112.      ferent line or the previous command modified the  file,
  113.      then Elvis will print the current line.
  114.  
  115. autotab, at
  116.      This option affects the  behaviour  of  the  autoindent
  117.      mode.  If autoindent is turned off, then autotab has no
  118.      effect.
  119.  
  120.      When autotab is turned on, elvis will use a mixture  of
  121.      spaces and tabs to create the proper amount of indenta-
  122.      tion.  This is the default.
  123.  
  124.      When autotab is turned off, elvis will only use  spaces
  125.      for  auto-indent.   Elvis  will still insert a real tab
  126.      character when you  hit  the  <Tab>  key,  though;  the
  127.  
  128.  
  129.  
  130.                       August 10, 1992
  131.  
  132.  
  133.  
  134.  
  135.  
  136. 5-3                       OPTIONS                        5-3
  137.  
  138.  
  139.      autotab option only affects _a_u_t_o_m_a_t_i_c indentation.
  140.  
  141. autowrite, aw
  142.      When you're editing one file and decide  to  switch  to
  143.      another  -  via  the  :tag  command,  or :next command,
  144.      perhaps - if your current file has been modified,  then
  145.      Elvis  will  normally print an error message and refuse
  146.      to switch.
  147.  
  148.      However, if the autowrite option is on, then Elvis will
  149.      write the modified version of the current file and suc-
  150.      cessfully switch to the new file.
  151.  
  152. beautify, bf
  153.      This option causes all control characters to be deleted
  154.      from  the text file, at the time when you start editing
  155.      it.  If you're already editing a file when you turn  on
  156.      the beautify option, then that file won't be affected.
  157.  
  158. cc   The :cc command  runs  the  C  compiler.   This  option
  159.      should be set to the name of your compiler.
  160.  
  161. charattr, ca
  162.      Many text formatting programs allow  you  to  designate
  163.      portions  of your text to be underlined, italicized, or
  164.      boldface by embedding the special strings \fU, \fI, and
  165.      \fB in your text.  The special string \fP marks the end
  166.      of underlined or boldface text.
  167.  
  168.      Elvis normally treats those special strings  just  like
  169.      any other text.
  170.  
  171.      However, if the charattr option is on, then Elvis  will
  172.      interpret  those  special strings correctly, to display
  173.      underlined or boldface text on the screen.  (This  only
  174.      works,  of  course, if your terminal can display under-
  175.      lined and boldface, and if the TERMCAP entry  says  how
  176.      to do it.)
  177.  
  178. columns, co
  179.      This option shows how wide your screen is.
  180.  
  181. digraph, dig
  182.      This option is used to  enable/disable  recognition  of
  183.      digraphs.   The default value is nodigraph, which means
  184.      that digraphs will not be recognized.
  185.  
  186. directory, dir
  187.      Elvis stores text  in  temporary  files.   This  option
  188.      allows  you  to control which directory those temporary
  189.      files will appear in.  The default is /usr/tmp.
  190.  
  191.      This option can only be set  in  a  .exrc  file;  after
  192.      that,  Elvis will have already started making temporary
  193.  
  194.  
  195.  
  196.                       August 10, 1992
  197.  
  198.  
  199.  
  200.  
  201.  
  202. 5-4                       OPTIONS                        5-4
  203.  
  204.  
  205.      files in some other directory, so it would be too late.
  206.  
  207. edcompatible, ed
  208.      This   option   affects   the    behaviour    of    the
  209.      ":s/regexp/text/options"  command.   It is normally off
  210.      (:se noed) which causes all of the substitution options
  211.      to be off unless explicitly given.
  212.  
  213.      However, with edcompatible on (:se ed),  the  substitu-
  214.      tion  command  remembers  which  options  you used last
  215.      time.  Those same options  will  continue  to  be  used
  216.      until  you change them.  In edcompatible mode, when you
  217.      explicitly give the name of a substitution option,  you
  218.      will toggle the state of that option.
  219.  
  220.      This all seems very strange to me, but its  implementa-
  221.      tion  was  almost free when I added the ":&" command to
  222.      repeat the previous substitution, so there it is.
  223.  
  224. equalprg, ep
  225.      This holds the name & arguments of the external  filter
  226.      program  used  the  the visual = operator.  The defualt
  227.      value is "fmt", so the  =  operator  will  adjust  line
  228.      breaks in text.
  229.  
  230. errorbells, eb
  231.      Elvis normally rings  a  bell  when  you  do  something
  232.      wrong.  This option lets you disable the bell.
  233.  
  234. exrc This option specifies  whether  a  .exrc  file  in  the
  235.      current directory should be executed.  By default, this
  236.      option is off (":set noexrc") which prevents elvis from
  237.      executing .exrc in the current directory.  If the .exrc
  238.      file in your home directory turns this option on (":set
  239.      exrc") then the Elvis will attempt to execute the .exrc
  240.      file in the current directory.
  241.  
  242.      This option  exist  mainly  for  security  reasons.   A
  243.      mean-spirited person could do something like
  244.           echo >/tmp/.exrc '!rm -rf $HOME'
  245.      and then anybody who attempted to edit or view  a  file
  246.      in  the  /tmp directory would lose most of their files.
  247.      With the exrc option turned off, this  couldn't  happen
  248.      to you.
  249.  
  250. exrefresh, er
  251.      The EX mode of Elvis writes many lines to  the  screen.
  252.      You can make Elvis either write each line to the screen
  253.      separately, or save up many lines and write them all at
  254.      once.
  255.  
  256.      The exrefresh option is normally on, so  each  line  is
  257.      written to the screen separately.
  258.  
  259.  
  260.  
  261.  
  262.                       August 10, 1992
  263.  
  264.  
  265.  
  266.  
  267.  
  268. 5-5                       OPTIONS                        5-5
  269.  
  270.  
  271.      You may wish to turn  the  exrefresh  option  off  (:se
  272.      noer)  if  the  "write"  system  call is costly on your
  273.      machine, or if you're using  a  windowing  environment.
  274.      (Windowing  environments  scroll text a lot faster when
  275.      you write many lines at once.)
  276.  
  277.      This option has no effect in  visual  command  mode  or
  278.      input mode.
  279.  
  280. flash, vbell
  281.      If your termcap entry describes a  visible  alternative
  282.      to  ringing your terminal's bell, then this option will
  283.      say whether the visible version gets used or not.  Nor-
  284.      mally it will be.
  285.  
  286.      If your termcap does NOT include a visible  bell  capa-
  287.      bility,  then  the  flash  option  will be off, and you
  288.      can't turn it on.
  289.  
  290. flipcase, fc
  291.      The flipcase option allows you to control how the  non-
  292.      ASCII characters are altered by the "~" command.
  293.  
  294.      The string is divided into pairs of  characters.   When
  295.      "~" is applied to a non-ASCII character, Elvis looks up
  296.      the character in the flipcase string to see which  pair
  297.      it's  in, and replaces it by the other character of the
  298.      pair.
  299.  
  300. hideformat, hf
  301.      Many text formatters require you to embed  format  com-
  302.      mands  in  your  text,  on  lines that start with a "."
  303.      character.  Elvis normally displays  these  lines  like
  304.      any  other  text,  but  if the hideformat option is on,
  305.      then format lines are displayed as blank lines.
  306.  
  307. ignorecase, ic
  308.      Normally, when  Elvis  searches  for  text,  it  treats
  309.      uppercase  letters  as  being  different  for lowercase
  310.      letters.
  311.  
  312.      When the ignorecase option is on, uppercase and  lower-
  313.      case are treated as equal.
  314.  
  315. inputmode, im
  316.      This option allows you to have Elvis start up in insert
  317.      mode.   You  can  still exit insert mode at any time by
  318.      hitting the ESC key, as usual.   Usually,  this  option
  319.      would be set in your ".exrc" file.
  320.  
  321. keytime, kt
  322.      The arrow keys of most terminals send a multi-character
  323.      sequence.   It  takes  a  measurable amount of time for
  324.      these sequences to be transmitted.  The keytime  option
  325.  
  326.  
  327.  
  328.                       August 10, 1992
  329.  
  330.  
  331.  
  332.  
  333.  
  334. 5-6                       OPTIONS                        5-6
  335.  
  336.  
  337.      allows  you  to  control  the maximum amount of time to
  338.      allow for an arrow key (or  other  mapped  key)  to  be
  339.      received in full.
  340.  
  341.      On most systems, the setting is the number of tenths of
  342.      a  second  to  allow between characters.  On some other
  343.      systems, the setting is in whole seconds.
  344.  
  345.      Try to avoid  setting  keytime=1.   Most  systems  just
  346.      count  clock beats, so if you tried to read a character
  347.      shortly before a clock beat, you could allow almost  no
  348.      time  at  all  for  reading the characters.  For higher
  349.      keytime settings, the difference is less critical.
  350.  
  351.      If your system's response time is poor, you might  want
  352.      to  increase  the  keytime.   In particular, I've found
  353.      that when keystrokes must be  sent  through  a  network
  354.      (via  X  windows,  rlogin,  or telnet, for example) the
  355.      keytime should be set to at least 1 second.
  356.  
  357.      As a special case, you can set keytime to 0 to  disable
  358.      this time limit stuff altogether.  The big problem here
  359.      is: If your arrow keys' sequences start  with  an  ESC,
  360.      then every time you hit your ESC key Elvis will wait...
  361.      and wait...  to see if maybe that ESC was  part  of  an
  362.      arrow key's sequence.
  363.  
  364.      NOTE: this option is a generalization  of  the  timeout
  365.      option of the real vi.
  366.  
  367. keywordprg, kp
  368.      Elvis has a special keyword lookup feature.   You  move
  369.      the cursor onto a word, and hit shift-K, and Elvis uses
  370.      another program to look up the word and display  infor-
  371.      mation about it.
  372.  
  373.      This option says which program gets run.
  374.  
  375.      The default value of this option is "ref", which  is  a
  376.      program  that  looks up the definition of a function in
  377.      C.  It looks up the function  name  in  a  file  called
  378.      "refs" which is created by ctags.
  379.  
  380.      You can subtitute other programs, such  as  an  English
  381.      dictionary  program  or  the online manual.  Elvis runs
  382.      the program, using the keyword as  its  only  argument.
  383.      The  program  should  write information to stdout.  The
  384.      program's exit status should  be  0,  unless  you  want
  385.      Elvis to print "<<< failed >>>".
  386.  
  387. lines, ln
  388.      This option says how many lines you screen has.
  389.  
  390. list, li
  391.  
  392.  
  393.  
  394.                       August 10, 1992
  395.  
  396.  
  397.  
  398.  
  399.  
  400. 5-7                       OPTIONS                        5-7
  401.  
  402.  
  403.      In nolist mode (the default), Elvis displays text in  a
  404.      "normal" manner -- with tabs expanded to an appropriate
  405.      number of spaces, etc.
  406.  
  407.      However, sometimes it is useful to have tab  characters
  408.      displayed   differently.    In   list  mode,  tabs  are
  409.      displayed as "^I", and a "$" is displayed at the end of
  410.      each line.
  411.  
  412. magic, ma
  413.      The search  mechanism  in  Elvis  can  accept  "regular
  414.      expressions"  --  strings  in  which certain characters
  415.      have special meaning.
  416.  
  417.      The magic option is normally  on,  which  causes  these
  418.      characters to be treated specially.
  419.  
  420.      If you turn the magic option off (:se noma),  then  all
  421.      characters except ^ and $ are treated literally.  ^ and
  422.      $ retain their special meanings regardless of the  set-
  423.      ting of magic.
  424.  
  425. make, mk
  426.      The :make  command  runs  your  "make"  program.   This
  427.      option defines the name of your "make" program.
  428.  
  429. mesg With the  real  vi,  running  under  real  UNIX,  ":set
  430.      nomesg" would prevent other users from sending you mes-
  431.      sages.  Elvis ignores it, though.
  432.  
  433. modelines, ml
  434.      Elvis supports modelines.  Modelines are lines near the
  435.      beginning  or  end  of  your  text  file  which contain
  436.      "ex:yowza:", where "yowza" is any EX command.  A  typi-
  437.      cal  "yowza"  would  be  something  like  "set  ts=5 ca
  438.      kp=spell wm=15".  Other text may also appear on a mode-
  439.      line, so you can place the "ex:yowza:" in a comment:
  440.  
  441.              /* ex:set sw=4 ai: */
  442.  
  443.  
  444.      Normally these lines are ignored, for security reasons,
  445.      but if you have "set modelines" in your .exrc file then
  446.      "yowza" is executed.
  447.  
  448. novice, nov
  449.      The  command  ":set  novice"  is  equivelent  to  ":set
  450.      nomagic report=1 showmode".
  451.  
  452. paragraphs, pa
  453.      The { and } commands move the cursor forward  or  back-
  454.      ward in increments of one paragraph.  Paragraphs may be
  455.      separated by blank lines, or by a "dot"  command  of  a
  456.      text   formatter.    Different   text   formatters  use
  457.  
  458.  
  459.  
  460.                       August 10, 1992
  461.  
  462.  
  463.  
  464.  
  465.  
  466. 5-8                       OPTIONS                        5-8
  467.  
  468.  
  469.      different "dot" commands.  This option  allows  you  to
  470.      configure Elvis to work with your text formatter.
  471.  
  472.      It is assumed that your formatter  uses  commands  that
  473.      start  with a "." character at the front of a line, and
  474.      then have a one- or two-character command name.
  475.  
  476.      The value of the paragraphs option is a string in which
  477.      each  pair  of  characters is one possible form of your
  478.      text formatter's paragraph command.
  479.  
  480. more When Elvis must display a sequence of messages  at  the
  481.      bottom  line  of the screen in visual mode, it normally
  482.      pauses after all but the last one, so you have time  to
  483.      read them all.
  484.  
  485.      If you turn off the "more" option, then Elvis will  not
  486.      pause.   This means you can only read the last message,
  487.      but it is usually the most important one anyway.
  488.  
  489. prompt, pr
  490.      If you ":set noprompt", then Elvis will no longer  emit
  491.      a  ':'  when  it  expects you to type in an _e_x command.
  492.      This is slightly useful if you're  using  an  astonish-
  493.      ingly  slow  UNIX  machine, but the rest of us can just
  494.      ignore this one.
  495.  
  496. readonly, ro
  497.      Normally, Elvis will let you write  back  any  file  to
  498.      which  you  have  write  permission.  If you don't have
  499.      write permission, then you can only write  the  changed
  500.      version of the file to a _d_i_f_f_e_r_e_n_t file.
  501.  
  502.      If you set the readonly option, then Elvis will pretend
  503.      you  don't  have write permission to _a_n_y file you edit.
  504.      It is useful when you really only mean to use Elvis  to
  505.      look  at  a file, not to change it.  This way you can't
  506.      change it accidentally.
  507.  
  508.      This option is normally off, unless you use the  "view"
  509.      alias  of  Elvis.   "View" is like "vi" except that the
  510.      readonly option is on.
  511.  
  512. remapThe ":map"  command  allows  you  to  convert  one  key
  513.      sequence  into another.  The remap option allows you to
  514.      specify what should happen if portions  of  that  other
  515.      sequence  are  also  in the map table.  If remap is on,
  516.      then those portions will also be  mapped,  just  as  if
  517.      they  had been typed on the keyboard.  If remap is off,
  518.      then the matching portions will not be mapped.
  519.  
  520.      For example, if you enter the commands ":map A  B"  and
  521.      ":map  B C", then when remap is on, A will be converted
  522.      to C.  But when remap is off, A will be converted  only
  523.  
  524.  
  525.  
  526.                       August 10, 1992
  527.  
  528.  
  529.  
  530.  
  531.  
  532. 5-9                       OPTIONS                        5-9
  533.  
  534.  
  535.      to B.
  536.  
  537. report, re
  538.      Commands in Elvis may affect many lines.  For  commands
  539.      that affect a lot of lines, Elvis will output a message
  540.      saying what was done and how many lines were  affected.
  541.      This  option allows you to define what "a lot of lines"
  542.      means.  The default is 5, so any command which  affects
  543.      5 or more lines will cause a message to be shown.
  544.  
  545. ruler, ru
  546.      This option is normally off.  If you turn it  on,  then
  547.      Elvis  will  constantly display the line/column numbers
  548.      of the cursor, at the bottom of the screen.
  549.  
  550. scroll, sc
  551.      The ^U and ^D keys normally scroll backward or  forward
  552.      by half a screenful, but this is adjustable.  The value
  553.      of this option says how many lines  those  keys  should
  554.      scroll  by.   If you invoke ^U or ^D with a count argu-
  555.      ment (for example, "33^D") then this option's value  is
  556.      set to the count.
  557.  
  558. sections, se
  559.      The [[ and ]] commands move the cursor backward or for-
  560.      ward  in increments of 1 section.  Sections may be del-
  561.      imited by a { character in column 1  (which  is  useful
  562.      for  C  source  code) or by means of a text formatter's
  563.      "dot" commands.
  564.  
  565.      This option allows you to configure Elvis to work  with
  566.      your text formatter's "section" command, in exectly the
  567.      same way that the paragraphs option makes it work  with
  568.      the formatter's "paragraphs" command.
  569.  
  570. shell, sh
  571.      When Elvis forks a shell (perhaps for the :! or  :shell
  572.      commands)  this is the program that is uses as a shell.
  573.      This is "/bin/sh" by default, unless you have  set  the
  574.      SHELL (or COMSPEC, for MS-DOS) environment variable, it
  575.      which  case  the  default  value  is  copied  from  the
  576.      environment.
  577.  
  578. shiftwidth, sw
  579.      The < and > commands shift text left or right  by  some
  580.      uniform  number  of  columns.   The  shiftwidth  option
  581.      defines that "uniform number".  The default is 8.
  582.  
  583. showmatch, sm
  584.      With showmatch set, in input mode every  time  you  hit
  585.      one  of  )}], Elvis will momentarily move the cursor to
  586.      the matching ({[.
  587.  
  588. showmode, smd
  589.  
  590.  
  591.  
  592.                       August 10, 1992
  593.  
  594.  
  595.  
  596.  
  597.  
  598. 5-10                      OPTIONS                       5-10
  599.  
  600.  
  601.      In visual mode, it is easy to forget whether you're  in
  602.      the  visual  command  mode or input/replace mode.  Nor-
  603.      mally, the showmode option is off, and  you  haven't  a
  604.      clue  as  to  which  mode  you're  in.  If you turn the
  605.      showmode option  on,  though,  a  little  message  will
  606.      appear  in  the lower right-hand corner of your screen,
  607.      telling you which mode you're in.
  608.  
  609. sidescroll, ss
  610.      For long lines, Elvis scrolls sideways.  (This is  dif-
  611.      ferent from the real vi, which wraps a single long line
  612.      onto several rows of the screen.)
  613.  
  614.      To minimize the number of scrolls needed,  Elvis  moves
  615.      the  screen  sideways  by several characters at a time.
  616.      The value of this  option  says  how  many  characters'
  617.      widths to scroll at a time.
  618.  
  619.      Generally, the faster your screen can be  redrawn,  the
  620.      lower the value you will want in this option.
  621.  
  622. sync, sy
  623.      If the system crashes during an edit session, then most
  624.      of  your  work can be recovered from the temporary file
  625.      that Elvis uses to store changes.   However,  sometimes
  626.      the  OS  will not copy changes to the hard disk immedi-
  627.      ately, so recovery might not be possible.  The [no]sync
  628.      option lets you control this.
  629.  
  630.      In nosync mode (which is the default, for UNIX),  Elvis
  631.      lets  the operating system control when data is written
  632.      to the disk.  This is generally faster.
  633.  
  634.      In sync mode (which is the default for  MS-DOS,  Amiga-
  635.      Dos,  and  Atari  TOS), Elvis forces all changes out to
  636.      disk every time you make a change.  This  is  generally
  637.      safer,  but slower.  It can also be a rather rude thing
  638.      to do on a multi-user system.
  639.  
  640. tabstop, ts
  641.      Tab characters are normally 8 characters wide, but  you
  642.      can change their widths by means of this option.
  643.  
  644. taglength, tl
  645.      This option allows you to specify how  many  characters
  646.      of  a tag's name must match when performing tag lookup.
  647.      As a special case, ":set taglength=0"  means  that  all
  648.      characters of a tag's name must match.
  649.  
  650.      Note: some configurations of Elvis don't  support  this
  651.      option.
  652.  
  653. term, te
  654.      This read-only option shows the  name  of  the  termcap
  655.  
  656.  
  657.  
  658.                       August 10, 1992
  659.  
  660.  
  661.  
  662.  
  663.  
  664. 5-11                      OPTIONS                       5-11
  665.  
  666.  
  667.      entry that Elvis is using for your terminal.
  668.  
  669. terse, tr
  670.      The real vi uses  this  option  to  select  longer  vs.
  671.      shorter  error  messages.   Elvis  has  only one set of
  672.      error messages, though, so this option has no effect.
  673.  
  674. timeout, to
  675.      The command ":set notimeout"  is  equivelent  to  ":set
  676.      keytime=0",  and  ":set timeout" is equivelent to ":set
  677.      keytime=1".  This affects the behaviour  of  the  <Esc>
  678.      key.   See  the  discussion of the "keytime" option for
  679.      more information.
  680.  
  681. warn, wa
  682.      If you have modified a file but not yet written it back
  683.      to  disk,  then  Elvis  will  normally  print a warning
  684.      before executing a ":!cmd" command.  However, in nowarn
  685.      mode, this warning is not given.
  686.  
  687.      Elvis also normally prints a message after a successful
  688.      search  that  wrapped  at EOF.  The [no]warn option can
  689.      also disable this warning.
  690.  
  691. window, wi
  692.      This option controls how many lines are redrawn after a
  693.      long move.
  694.  
  695.      On fast terminals, this is usually set to the number of
  696.      rows  that  the  terminal can display, minus one.  This
  697.      causes the entire screen to be filled with text  around
  698.      the cursor.
  699.  
  700.      On slow terminals, you may wish to reduce this value to
  701.      about  7  or  so.   That way, if you're doing something
  702.      like  repeatedly  hitting  'n'  to  search   for   each
  703.      occurrence of some string and trying to find a particu-
  704.      lar occurrence, then you don't need to wait as long for
  705.      Elvis to redraw the screen after each search.
  706.  
  707. wrapmargin, wm
  708.      Normally (with wrapmargin=0) Elvis will let you type in
  709.      extremely long lines, if you wish.
  710.  
  711.      However, with warpmargin set to something other that  0
  712.      (wrapmargin=10 is nice), Elvis will automatically cause
  713.      long lines to be "wrapped" on a word  break  for  lines
  714.      come  too close to the right-hand margin.  For example:
  715.      On an 80-column screen, ":set wm=10" will  cause  lines
  716.      to wrap when their length exceeds 70 columns.
  717.  
  718. wrapscan, ws
  719.      Normally, when you search  for  something,  Elvis  will
  720.      find  it  no  matter  where  it  is in the file.  Elvis
  721.  
  722.  
  723.  
  724.                       August 10, 1992
  725.  
  726.  
  727.  
  728.  
  729.  
  730. 5-12                      OPTIONS                       5-12
  731.  
  732.  
  733.      starts at the cursor position,  and  searches  forward.
  734.      If  Elvis  hits EOF without finding what you're looking
  735.      for, then it wraps around to  continue  searching  from
  736.      line  1.   If  you  turn  off  the wrapscan option (:se
  737.      nows), then when Elvis hits EOF  during  a  search,  it
  738.      will stop and say so.
  739.  
  740. writeany, wr
  741.      With "writeany" turned off, elvis will prevent you from
  742.      accidentally overwriting a file.  For example, if "foo"
  743.      exists then ":w foo" will fail.  If  you  turn  on  the
  744.      "writeany" option, then ":w foo" will work.
  745.  
  746.      Regardless of the setting of "writeany",  though,  ":w!
  747.      foo"  will  work.   The  '!' forces the ":w" command to
  748.      write the file unless the operating system won't  allow
  749.      it.
  750.  
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759.  
  760.  
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771.  
  772.  
  773.  
  774.  
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.  
  788.  
  789.  
  790.                       August 10, 1992
  791.  
  792.  
  793.